home *** CD-ROM | disk | FTP | other *** search
- stop();
- name_txt.restrict = "A-Z 0-9.:\\-";
- tempName = game_so.data.playerName;
- Selection.setFocus(name_txt);
- Selection.setSelection(name_txt.length,name_txt.length);
- ok_btn.onRollOver = function()
- {
- ok_mc._alpha = 100;
- };
- ok_btn.onRollOut = ok_btn.onDragOut = function()
- {
- ok_mc._alpha = 40;
- };
- ok_btn.onRelease = function()
- {
- if(name_txt.length > 0)
- {
- game_so.data.playerName = name_txt.text;
- }
- delete tempName;
- nextFrame();
- };
- ok_btn.onKeyDown = function()
- {
- if(Key.getCode() == 13)
- {
- Key.removeListener(this);
- this.onRelease();
- }
- };
- Key.addListener(ok_btn);
-